c# foreach dictionary

34

.net loop through dictionary -

foreach (KeyValuePair item in myDictionary)
{
    MessageBox.Show(item.Key + "   " + item.Value);
}

foreach dictionary c# -

foreach(KeyValuePair<string, string> entry in myDictionary)
{
    // do something with entry.Value or entry.Key
}

c# foreach on a dictionary -

foreach(var item in myDictionary)
{
  foo(item.Key);
  bar(item.Value);
}

Comments

Submit
0 Comments